The Dialect Heading
ND004 C01 L03 03 The Dialect
SQLAlchemy Docs on the Dialect
In SQLAlchemy, the dialect layer… (Select all that apply)
Allows us to forget about the database system (e.g., SQLite vs. Postgres) we’re using
Helps avoid opening and closing connections for every data change
Handles dropped connections
Helps avoid doing very many small calls to the DB
Next Concept